title Search For Job

participant Jobseeker
participant System

entryspacing 1.2

Jobseeker->System: searchForJob(jobName)

alt Jobs where their names contain jobName
    Jobseeker<--System: list of jobs

else No job found
    Jobseeker<--System: no job found
    end